* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
  overflow-x: hidden;  
  scroll-behavior: smooth;
  font-family: 'Segoe UI', sans-serif;
  max-width: 100vw;
}

body {
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
  overflow-y: scroll;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}
/* ===========================
   Navigation Bar
=========================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.nav-links a:not(.glass-btn)::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #00f7ff;
  transition: width 0.3s ease;
}

.nav-links a:not(.glass-btn):hover::after,
.nav-links a:not(.glass-btn).active::after {
  width: 100%;
}

.nav-links a:not(.glass-btn):hover {
  color: #00f7ff;
}


.glass-btn {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  font-weight: bold;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.glass-btn:hover {
  background: rgba(0, 255, 255, 0.2);
  color: #00f7ff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
}


.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  color: #00ffff;
  text-decoration: none;
  padding: 0px;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 255, 255, 0);
  z-index: 100;
  min-width: 220px;
}

.dropdown-menu a {
  color: #00ffff;
  text-decoration: none;
  display: block;
  padding: 12px 20px;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(0, 255, 255, 0);
  color: #ffffff;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.glass-btn {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 95px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  font-weight: bold;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.glass-btn:hover {
  background: rgba(0, 255, 255, 0.2);
  color: #00f7ff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .glass-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}
.page-heading-section {
  width: 100%;
  margin: 0; /* Remove any default space */
  padding: 0; /* Remove left/right padding */
  margin-top: 0; /* Remove space between navbar and heading */
  text-align: center;
}

.page-heading-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 2rem 40px; /* Top 60px, bottom 40px, side padding */
}

.page-heading-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f7ff, #ffffff, #00f7ff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  animation: shimmer 3s infinite linear;
  margin: 0 0 20px 0; /* Remove top margin */
}

.page-heading-content p {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

@keyframes shimmer {
  0% {
    background-position: -300% 0;
  }
  100% {
    background-position: 300% 0;
  }
}

.services-text {
  flex: 1;
}
.services-text h1 {
  margin-bottom: 20px;
}

/* Glass Box Section */
.content-section {
  max-width: 900px;
  margin: 30px auto 3rem auto;
  padding: 20px 30px; /* Added 30px padding left & right */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 188, 212, 0.1);
  color: #ddd;
  text-align: center;
  transition: all 0.3s ease;
}

/* Hover effect */
.content-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 255, 255, 0.3);
}

/* Heading inside the glass box */
.content-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  transition: color 0.3s ease;
}

/* Change heading color on hover */
.content-section:hover h2 {
  color: #00ffff;
}

.content-section .highlight {
  color: #00ffff;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.8;
}


/* Footer */
.footer-section {
  background: #111;
  padding: 2rem;
  text-align: center;
  font-size: 1rem;
  color: #ccc;
}

.footer-section a {
  color: #00ffff;
  text-decoration: none;
  font-weight: 600;
}
.glass-footer {
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px 20px;
  color: #e0f7fa;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-info p {
  margin: 8px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

.footer-link {
  color: #00ffff;
  text-decoration: none;
  transition: color 0.3s;
  margin: 0 4px;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.copyright {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}
